Document Structure
The HTML specification does not require all HTML tags, but following closer to form makes for more compliance with HTML and SGML client parsers. The commands found on the Header, Body and Footer popUp menus are designed to add HTML structure tags to your document.
The beginning and end of an HTML document is marked with the HTML language tags and .
An HTML document header is delimited with the tags
and . The document header contains information used by a browser program to navigate and keep track of document history, and shouldn't contain any content other than HTML comments.
All HTML documents should have a document title, enclosed by and tags. The document title should be placed between the and tags.
The document body is delimited with the tags and . All document content should occur within the body tags.
A sample structure is shown below, complete with divisions for Header, Body and Footer sections:
————————— start of Header area ——————————
Document Title
—————————— start of Body area ——————————
Your document content goes here…
————————— start of Footer area ——————————
The author's address information goes here (optional).
—————————— end of Footer area ——–––——————
Note that HTML.edit concatenates the Header+Body+Footer text areas on exported text files using the Export Document command, so you could put the entire contents of your file within any one of the text areas, and you would obtain the same effect. HTML.edit adds the HTML structure tags as shown above, and parses the text accordingly.
Back to Editor Window, on to Header, or return to Contents.